Parses the supplied array segment into data structures representing the components of the SDP.

Namespace:  Microsoft.Rtc.Signaling
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Sub 
Parse ( _
	
segment 
As 
ArraySegment(
Of 
Byte) _
)
C#
public 
void 
Parse(
	
ArraySegment<
byte> 
segment
)
Visual C++
public:
void 
Parse(
	
ArraySegment<
unsigned char> 
segment
)
JavaScript
function 
parse(
segment);

Parameters

segment
Type: ArraySegment < (Of < ( Byte > ) > )
The array segment containing the SDP to parse.

Exceptions

Exception Condition
Microsoft.Rtc.Signaling . . :: . MessageParsingException Thrown when the provided SDP is malformated. See exception message for details.

See Also